home *** CD-ROM | disk | FTP | other *** search
- okButton = new Button();
- okButton.setLabel("OK");
- gbc = new GridBagConstraints();
- gbc.gridx = 1;
- gbc.gridy = 2;
- gbc.fill = GridBagConstraints.NONE;
- gbc.insets = new Insets(0,0,0,0);
- ((GridBagLayout)getLayout()).setConstraints(okButton, gbc);
- add(okButton);
-